crypto/tls.clientHandshakeStateTLS13.transcript (field)
30 uses
crypto/tls (current package)
handshake_client_tls13.go#L36: transcript hash.Hash
handshake_client_tls13.go#L68: hs.transcript = hs.suite.hash.New()
handshake_client_tls13.go#L70: if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L105: hs.transcript = hs.echContext.innerTranscript
handshake_client_tls13.go#L125: if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
handshake_client_tls13.go#L246: chHash := hs.transcript.Sum(nil)
handshake_client_tls13.go#L247: hs.transcript.Reset()
handshake_client_tls13.go#L248: hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
handshake_client_tls13.go#L249: hs.transcript.Write(chHash)
handshake_client_tls13.go#L250: if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
handshake_client_tls13.go#L396: if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L525: clientHandshakeTrafficLabel, hs.transcript)
handshake_client_tls13.go#L528: serverHandshakeTrafficLabel, hs.transcript)
handshake_client_tls13.go#L559: msg, err := c.readHandshake(hs.transcript)
handshake_client_tls13.go#L637: msg, err := c.readHandshake(hs.transcript)
handshake_client_tls13.go#L646: msg, err = c.readHandshake(hs.transcript)
handshake_client_tls13.go#L696: signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
handshake_client_tls13.go#L703: if err := transcriptMsg(certVerify, hs.transcript); err != nil {
handshake_client_tls13.go#L727: expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
handshake_client_tls13.go#L733: if err := transcriptMsg(finished, hs.transcript); err != nil {
handshake_client_tls13.go#L740: clientApplicationTrafficLabel, hs.transcript)
handshake_client_tls13.go#L742: serverApplicationTrafficLabel, hs.transcript)
handshake_client_tls13.go#L756: c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
handshake_client_tls13.go#L769: if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
handshake_client_tls13.go#L791: if _, err := hs.c.writeHandshakeRecord(certMsg, hs.transcript); err != nil {
handshake_client_tls13.go#L816: signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
handshake_client_tls13.go#L828: if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
handshake_client_tls13.go#L839: verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
handshake_client_tls13.go#L842: if _, err := hs.c.writeHandshakeRecord(finished, hs.transcript); err != nil {
handshake_client_tls13.go#L850: resumptionLabel, hs.transcript)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |